home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 68K / Demo / rpc / test < prev    next >
Text File  |  1996-05-20  |  697b  |  25 lines

  1. : ${PYTHON=python}
  2. : ${SERVER=charon.cwi.nl}
  3.  
  4. set -xe
  5.  
  6. $PYTHON -c 'from rpc import test; test()'
  7. $PYTHON -c 'from rpc import test; test()' ${SERVER}
  8.  
  9. $PYTHON -c 'from rpc import testsvr; testsvr()' &
  10. PID=$!
  11. sleep 2
  12. $PYTHON -c 'from rpc import testclt; testclt()'
  13. kill -2 $PID
  14.  
  15. $PYTHON -c 'from mountclient import test; test()'
  16. $PYTHON -c 'from mountclient import test; test()' gatekeeper.dec.com
  17.  
  18. $PYTHON -c 'from nfsclient import test; test()'
  19. $PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com
  20. $PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com /archive
  21.  
  22. $PYTHON -c 'from rnusersclient import test; test()' ''
  23.  
  24. $PYTHON -c 'from rpc import testbcast; testbcast()'
  25.